#include<bits/stdc++.h>
using namespace std;
#define forn(i, n) for (int i = 0; i < int(n); i++)
#define ll long long
#define E endl
#define pb push_back
#define all(x) begin(x) , end(x) // For vectors of pair
#define py cout<<"YES\n"
#define pn cout<<"NO\n"
int n;
int operations(vector<int> &v){
int cd = v[1] - v[0] , op = 0;
for(int i = 2 ; i < n; i++){
int t = v[0] + cd * i;
if(abs(t - v[i]) > 1)
return n + 1;
op += abs(v[i] - t);
}
return op;
}
int main(){
ios::sync_with_stdio(false);
cin.tie(NULL);
cin >> n;
vector<int> v(n);
forn(i , n) cin >> v[i];
if(n <= 2){
cout<<0<<E;
return 0;
}
int minOp = n + 1;
for(int i = -1 ; i <= 1 ; i++){
for(int j = -1 ; j <= 1 ; j++){
vector<int> cpy = v;
cpy[0] += i;
cpy[1] += j;
int oper = operations(cpy);
oper += i != 0;
oper += j != 0;
minOp = min(oper, minOp);
}
}
if(minOp <= n)
cout<<minOp<<E;
else
cout<<-1<<E;
return 0;
}
1194C - From S To T | 110B - Lucky String |
1114A - Got Any Grapes | 224B - Array |
125B - Simple XML | 567B - Berland National Library |
431B - Shower Line | 282C - XOR and OR |
1582B - Luntik and Subsequences | 609A - Флеш-карты |
1207A - There Are Two Types Of Burgers | 371C - Hamburgers |
343B - Alternating Current | 758B - Blown Garland |
1681B - Card Trick | 1592A - Gamer Hemose |
493D - Vasya and Chess | 1485A - Add and Divide |
337B - Routine Problem | 1392D - Omkar and Bed Wars |
76E - Points | 762C - Two strings |
802M - April Fools' Problem (easy) | 577B - Modulo Sum |
1555B - Two Tables | 1686A - Everything Everywhere All But One |
1469B - Red and Blue | 1257B - Magic Stick |
18C - Stripe | 1203B - Equal Rectangles |